home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-06-18 | 306 b | 15 lines | [TEXT/ttxt] |
- //-------------------------------------------------------------------//
-
- // Syntax: sinh ( X )
-
- // Description:
-
- // Sinh is the hyperbolic sine of the element(s) of X.
-
- //-------------------------------------------------------------------//
-
- sinh = function ( x )
- {
- return (exp (x) - exp (-x))/2;
- };
-